home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 3 / Amiga Format CD03 (1996-07-04)(Future Publishing)(GB)(Track 1 of 6)[!][issue 1996-08].iso / comms / netsoftware / archie38_1.lha / archie-1.4 / regex.h < prev    next >
C/C++ Source or Header  |  1995-01-04  |  624b  |  24 lines

  1. /*
  2.  * regex.h : External defs for Ozan Yigit's regex functions, for systems
  3.  *    that don't have them builtin. See regex.c for copyright and other
  4.  *    details.
  5.  *
  6.  * Note that this file can be included even if we're linking against the
  7.  * system routines, since the interface is (deliberately) identical.
  8.  *
  9.  * George Ferguson, ferguson@cs.rochester.edu, 11 Sep 1991.
  10.  */
  11.  
  12. #if defined(_AUX_SOURCE) || defined(USG)
  13. /* Let them use ours if they wish.  */
  14. # ifndef NOREGEX
  15. extern char *regcmp();
  16. extern char *regex();
  17. #define re_comp regcmp
  18. #define re_exec regex
  19. # endif
  20. #else
  21. extern char *re_comp();
  22. extern int re_exec();
  23. #endif
  24.